.explorer {
    background-color: #202020;
    width: 100%;
    height: 100%;
    user-select: none;
}

.explorer>.path {
    background-color: #191919;
    height: 40px;
    width: 100%;
    border-right: 1px solid #2b2b2b;
}

.explorer>.path>div {
    border: 1px solid #535353;
    left: 10px;
    line-height: 20px;
    height: 20px;
    top: 10px;
    width: calc(100% - 20px);
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.explorer>.tree {
    background-color: #191919;
    height: 100%;
    width: 150px;
    border-right: 1px solid #2b2b2b;
}

.explorer>.dir {
    position: absolute;
    left: 160px;
    width: calc(100% - 160px);
    top: 40px;
    height: calc(100% - 40px);
    overflow-y: auto;
    overflow-x: hidden;
}

.explorer>.dir>button {
    text-decoration: none;
    color: var(--text-colour);
    text-align: left;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}

.explorer>.dir>a:hover {
    backdrop-filter: brightness(1.2);
}